home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
langs
/
glisp.zoo
/
FACT1.GL
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-05-30
|
166 b
|
8 lines
"Factoriel iteratif"
(de iter (n f)
(if (zerop n) f
(iter (- n 1) (* n f))))
(de fact (n) (iter n 1))
"(repeat 1000 (fact 13))"
(repeat 1000 (fact 13))